What is the role of the `@debug` directive in debugging SASS?
Description : Usage of `@debug` for debugging purposes.
Answer :
`@debug` is a directive inSASS that outputs values and messages to the console, which is particularly useful for debugging. It helps developers to track the values of variables and expressions during the SASS compilation. For example,`@debug $main-color;` will print the value of`$main-color` to the console, aiding in the debugging process.